VERSION 5.00 Begin VB.Form frmTitlePage ClientHeight = 5865 ClientLeft = 4350 ClientTop = 1530 ClientWidth = 3465 Icon = "frmTitlePage.frx":0000 LinkTopic = "Form1" Picture = "frmTitlePage.frx":08CA ScaleHeight = 5865 ScaleWidth = 3465 Begin VB.Label Label1 BackColor = &H80000012& Caption = "DoorWays" BeginProperty Font Name = "MS Sans Serif" Size = 24 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H000000FF& Height = 495 Left = 600 TabIndex = 0 Top = 5010 Width = 2415 End Attribute VB_Name = "frmTitlePage" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Form_DblClick() For X = 1 To 10000 If X <= 2000 Then frmTitlePage.Caption = "Loading Forms....." If X > 2000 And X <= 6000 Then frmTitlePage.Caption = "Checking For Connection....." If X > 6000 And X <= 8000 Then frmTitlePage.Caption = "Starting....." 'Image1.Visible = False 'If X >= 2000 And X <= 2100 Or X >= 6000 Or X <= 6100 Or X > 8000 Or X <= 8100 Or X >= 9900 Or X <= 10000 Then 'Image1.Visible = False 'Else 'Image1.Visible = True 'End If Next X frmTitlePage.Hide frmDoorToTheNet.Show End Sub Private Sub Form_Load() frmfakeForm.Picture = frmTitlePage.Picture frmTitlePage.Show frmTitlePage.Picture = frmfakeForm.Picture Call Form_DblClick End Sub